2006-05-08 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_add_shortcut_folder):
+ * gtk/gtktextbufferserialize.c (parse_attr_element): Fix some typos in
+ messages. (#341091, Tino Meinen)
+
* gtk/gtkstatusicon.c: Some cleanups.
* gtk/gtkstatusicon.c (gtk_status_icon_get_property): Silently return
2006-05-08 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_add_shortcut_folder):
+ * gtk/gtktextbufferserialize.c (parse_attr_element): Fix some typos in
+ messages. (#341091, Tino Meinen)
+
* gtk/gtkstatusicon.c: Some cleanups.
* gtk/gtkstatusicon.c (gtk_status_icon_get_property): Silently return
g_set_error (error,
GTK_FILE_CHOOSER_ERROR,
GTK_FILE_CHOOSER_ERROR_ALREADY_EXISTS,
- _("shortcut %s already exists"),
+ _("Shortcut %s already exists"),
uri);
g_free (uri);
set_error (error, context,
G_MARKUP_ERROR,
G_MARKUP_ERROR_PARSE,
- _("The attribute \"name\" were found twice on the <%s> element"),
- element_name);
+ _("The attribute \"%s\" was found twice on the <%s> element"),
+ "name", element_name);
return FALSE;
}
set_error (error, context,
G_MARKUP_ERROR,
G_MARKUP_ERROR_PARSE,
- _("The attribute \"id\" were found twice on the <%s> element"),
- element_name);
+ _("The attribute \"%s\" was found twice on the <%s> element"),
+ "id", element_name);
return FALSE;
}
{
set_error (error, context,
G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
- _("<%s> element neither a \"name\" nor an \"id\" element"), element_name);
+ _("<%s> element has neither a \"name\" nor an \"id\" element"), element_name);
return FALSE;
}
{
set_error (error, context,
G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
- _("\"%s\" is not a valid value of for attribute \"%s\""),
+ _("\"%s\" is not a valid value for attribute \"%s\""),
value, name);
g_value_unset (&gvalue);
return;